home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PD ROM 1
/
PD ROM Volume I - Macintosh Software from BMUG (1988).iso
/
Programming
/
Complete Applications
/
MEdit 1.5
/
RtoAsm.mcr
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1986-04-18
|
284 b
|
18 lines
|
[
TEXT/ttxt
]
*
* this macro puts a $ in col 0 and moves to the next line
"Hex it/H" {
select(L.,0);
insert("$");
select(L.+1,0);
};
*
* this puts a ',' at the end of the current line, then removes the CR
"Add Hex/A" {
select(L.,C$);
insert(",");
find("\n");
cut;
}.